Exploring Deck 195 Prefix’s Vessel ID:06¶
Please visit the Table of Contents for a complete listing of vessel classes to explore.
Please visit the Summary for a description of the project and how to use the maps
%run deck195_ppnnn_FOSDICparser.py '06' #details on the holoviews setup can be found in the subroutine here.
You passed prefix ['06'] into be plotted
Explore Prefix subset with all ships plotted at the same time, color coding is SST value (grey if unavailable)¶
sst = gv.Dataset(subgroup,['datetime','water_injection_temperature_degF','Type-Hull','History','shipclass'])
tiles = gv.tile_sources.EsriTerrain
points = sst.to(gv.Points, ['longitude', 'latitude'], ['datetime','water_injection_temperature_degF','Type-Hull','Name','History'])
tiles * points.opts(
color='water_injection_temperature_degF', cmap='reds',
tools=['hover'], global_extent=False, width=800, height=600, colorbar=True)
Explore Prefix subset ship by ship - color coding is SST value (grey if unavailable)¶
sst = gv.Dataset(subgroup,['datetime','water_injection_temperature_degF','Type-Hull','History','shipno'])
tiles = gv.tile_sources.EsriTerrain
points = sst.to(gv.Points, ['longitude', 'latitude'], ['datetime','water_injection_temperature_degF','Type-Hull','Name','History'])
tiles * points.opts(
color='water_injection_temperature_degF', cmap='reds',
tools=['hover'], global_extent=False, width=800, height=600, colorbar=True, title='ppnnn : '+prefix[0]+'xxx')
WARNING:param.project_points: Use method 'warning' via param namespace
WARNING:param.project_points: While projecting a Points element from a PlateCarree coordinate reference system (crs) to a Mercator projection none of the projected paths were contained within the bounds specified by the projection. Ensure you have specified the correct coordinate system for your data.
WARNING:param.project_points: Use method 'warning' via param namespace
WARNING:param.project_points: While projecting a Points element from a PlateCarree coordinate reference system (crs) to a Mercator projection none of the projected paths were contained within the bounds specified by the projection. Ensure you have specified the correct coordinate system for your data.
subgroup[['datetime','water_injection_temperature_degF','Type-Hull','History','shipno']]
| datetime | water_injection_temperature_degF | Type-Hull | History | shipno | |
|---|---|---|---|---|---|
| 355 | 1942-08-08 20:00:00 | 76.0 | CL-52 | https://en.wikipedia.org/wiki/USS_Juneau_(CL-52) | 052 |
| 356 | 1942-08-09 08:00:00 | 79.0 | CL-52 | https://en.wikipedia.org/wiki/USS_Juneau_(CL-52) | 052 |
| 357 | 1942-08-09 12:00:00 | 80.0 | CL-52 | https://en.wikipedia.org/wiki/USS_Juneau_(CL-52) | 052 |
| 358 | 1942-08-08 12:00:00 | 76.0 | CL-52 | https://en.wikipedia.org/wiki/USS_Juneau_(CL-52) | 052 |
| 359 | 1942-08-08 08:00:00 | 76.0 | CL-52 | https://en.wikipedia.org/wiki/USS_Juneau_(CL-52) | 052 |
| ... | ... | ... | ... | ... | ... |
| 638679 | 1942-02-24 08:00:00 | 77.0 | CL-46 | https://en.wikipedia.org/wiki/USS_Phoenix_(CL-46) | 046 |
| 638684 | 1942-04-14 12:00:00 | 74.0 | CL-47 | https://en.wikipedia.org/wiki/USS_Boise_(CL-47) | 047 |
| 638688 | 1942-07-14 20:00:00 | 66.0 | CL-46 | https://en.wikipedia.org/wiki/USS_Phoenix_(CL-46) | 046 |
| 638691 | 1942-04-14 20:00:00 | 70.0 | CL-47 | https://en.wikipedia.org/wiki/USS_Boise_(CL-47) | 047 |
| 638704 | 1942-07-14 12:00:00 | 66.0 | CL-46 | https://en.wikipedia.org/wiki/USS_Phoenix_(CL-46) | 046 |
27718 rows × 5 columns